home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
ai
/
bpnn133u
/
timer.c
< prev
next >
Wrap
C/C++ Source or Header
|
1992-11-18
|
523b
|
30 lines
/*
*-----------------------------------------------------------------------------
* file: timer.c
* desc: time a program in secs
* by: patrick ko
* date: 18 jan 92
*-----------------------------------------------------------------------------
*/
#include <stdio.h>
#include <time.h>
static time_t last;
static time_t this;
static time_t temp;
void timer_restart( )
{
time( &last );
}
long int timer_stop( )
{
time( &this );
temp = this - last;
last = this;
return ((long int)temp);
}